home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / smalltlk.zip / TESTS / MAKEFILE.MAK < prev    next >
Text File  |  1990-09-13  |  1KB  |  46 lines

  1. #.SUFFIXES : .st .test
  2.  
  3. BINDIR = ..\\bin
  4.  
  5. FILES = Makefile in *.st *.out
  6.  
  7. .st.test:
  8.     $(BINDIR)\\st -m $*.st <in >tempxxx.out
  9.         fc tempxxx.out $*.out
  10.         del tempxxx.out
  11.  
  12. install:
  13.     echo Performing Self Checking Tests
  14.     -make basic.test
  15.     -make blocks.test
  16.     -make fork.test
  17.     -make new.test
  18.     -make super.test
  19.     -make copy.test
  20.     -make num.test
  21.     -make file.test
  22.     -make primes.test
  23.     -make collect.test
  24.     -make 4queen.test
  25.     echo The following produce cycles, thus have nonzero differences
  26.     -make phil.test
  27.     echo Differences in random numbers may change results in following
  28.     -make sim1.test
  29.     -make sim2.test
  30.     echo Finished Self Checking Tests
  31.     
  32. #bundle:
  33. #    bundle $(FILES) >../tests.bundle
  34.  
  35. # if the CURSES routines are available, and the form library has been
  36. # built in the /prelude subdirectory (see Makefile there), the following
  37. # executes the plane example
  38. plane:
  39.     $(BINDIR)\\st -m -g form plane.st <in
  40.  
  41. # if the PLOT(3) routines are available, and the pen library has been
  42. # built in the /prelude subdirectory (see Makefile there), the following
  43. # executes the pens exame
  44. pen:
  45.     $(BINDIR)\\st -m -g pen penshow.st <in
  46.